home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_2.zip / EXAMPLES.EXE / EXAM115.C < prev    next >
C/C++ Source or Header  |  1991-03-13  |  266b  |  13 lines

  1.   #include "window.h"
  2.  
  3.   VBLOCKPTR v;
  4.  
  5.   main()
  6.   {
  7.     WindowInitializeSystem();
  8.     v = VideoSave(1,1,10,10);
  9.     for (i=1;i<=10;i++)
  10.       VideoWriteString("This is the save area.  Press a key to restore.",i,1);
  11.     GET_KEY();
  12.     VideoRestore(v);
  13.   }